*
*::before,
*::after{
    box-sizing: border-box;
    margin: 0%;
    padding: 0;
    list-style: none;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* NAVIGATION BAR */

header {
    background-color: var(--color-white);
  }
  .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #D99E9E;
    padding: 1px;  
    border: 1px solid #681D1D;
  }

  .logo img {
    margin-left: 10px;
    display: flex;
    width: 80px;
    height: 80px;
  }
  
  .navbar-links {
    margin-top: 0px;
    padding: 0;
    display: flex;
    position: absolute;
    margin-left: 250px;
  }
  .navbar-links a {
    display: block;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 5px;
    padding: 0px;
    background-color: #D99E9E;
    border: 20px solid #D99E9E;
    border-radius: 5px;
  }
  .navbar-links ul a:hover{
    color: #681D1D;
  }

  .register{
    background-color: #D99E9E;
  }
  * {box-sizing: border-box}

/* Add padding to containers */
.container {
  padding: 10px;
}

/* Full-width input fields */
input[type=text], input[type=password] {
  width: 100%;
  padding: 10px;
  margin: 5px 0 10px 0;
  display: relative;
  border: none;
  background: #D99E9E;
}

input[type=text], input[type=password] {
  background-color: #fff;
  outline: solid;
}

/* Overwrite default styles of hr */
hr {
  border: 1px solid #681D1D;
  margin-bottom: 15px;
}

/* Set a style for the submit/register button */
.registerbtn {
  background-color: #681D1D;
  color: white;
  padding: 15px 15px;
  margin: 10px 0;
  border: none;
  cursor: pointer;
  width: 10%;
  opacity: 0.9;
  font-size: 20px;
}

.registerbtn:hover {
  opacity:0.8;
}

/* Set a grey background color and center the text of the "sign in" section */
.signin {
  background-color: #D99E9E;
  text-align: center;
  font-size: 20px;
}

h1{
    color: white;
    text-decoration: none;
}

p {
    color: white;
    text-decoration: none;
}

a {
    color: #681D1D;
    text-decoration: none;
}

/*Footer */
footer {
    background-color: #681D1D;
    padding: 35px 0;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
  
  }
  
  .footer-column {
    flex: 1;
  }
  
  h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .social-media-icons {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .social-media-icons li {
    display: inline-block;
    margin-right: 10px;
  }
  
  .social-media-icons a {
    color: #fff;
    font-size: 25px;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 35px;
    color: #fff;
  }
  a{
    text-decoration: none;
    color:white
  }

  /* Style the form element with a border around it */
form {
  border: 4px solid #D99E9E;
}

/* Add some padding and a grey background color to containers */
.container {
  padding: 20px;
  background-color: #D99E9E;
}

/* Style the input elements and the submit button */
input[type=text], input[type=submit] {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #681D1D;
  box-sizing: border-box;
}

/* Add margins to the checkbox */
input[type=checkbox] {
  margin-top: 16px;
}

/* Style the submit button */
input[type=submit] {
  background-color: #681D1D;
  color: #D99E9E;
  border: none;
}

input[type=submit]:hover {
  opacity: 0.8;
}